home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
incl98.zoo
/
dir.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-20
|
421 b
|
19 lines
/*
* kludge city: fake out BSD'ish compatible dir routines with
* our Posix comaptible portable dir stuff
*/
#ifndef _SYS_DIR_H
#define _SYS_DIR_H
#ifdef _DIRENT_H
# error "<sys/dir.h>: You cannot use both <dirent.h> and <sys/dir.h>. \n\
<sys/dir.h> is provided for BSD compatibility\n"
#endif
/* note that the presence of _SYS_DIR_H causes dirent.h to
* behave differently
*/
#include <dirent.h>
#endif